home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Borland Visual dBASE Professiona v7.0 / DATA1.CAB / Sample_dBASE / Fleet / Fleet.dmd < prev    next >
Text File  |  1997-11-20  |  1KB  |  56 lines

  1. ** END HEADER -- do not remove this line
  2. //
  3. // Generated on 10/09/97
  4. //
  5. class FleetDataModule of FLEETCDATAMODULE from "fleet.cdm"
  6.  
  7.  
  8.    this.FLIGHT1 = new QUERY()
  9.    this.FLIGHT1.parent = this
  10.    with (this.FLIGHT1)
  11.       left = 4
  12.       top = 2
  13.       database = form.dbfleet
  14.       sql = 'SELECT * FROM "FLIGHT.DBF"'
  15.       active = true
  16.    endwith
  17.  
  18.  
  19.    with (this.FLIGHT1.rowset)
  20.  
  21.       indexName = "Flight ID"
  22.    endwith
  23.  
  24.  
  25.    this.SCHEDULE1 = new QUERY()
  26.    this.SCHEDULE1.parent = this
  27.    with (this.SCHEDULE1)
  28.       left = 8
  29.       top = 2
  30.       database = form.dbfleet
  31.       sql = 'SELECT * FROM "SCHEDULE.DBF"'
  32.       active = true
  33.    endwith
  34.  
  35.  
  36.    with (this.SCHEDULE1.rowset)
  37.       indexName = "Flight ID"
  38.    endwith
  39.  
  40.  
  41.    this.AIRCRAFT1 = new QUERY()
  42.    this.AIRCRAFT1.parent = this
  43.    with (this.AIRCRAFT1)
  44.       left = 12
  45.       top = 2
  46.       database = form.dbfleet
  47.       sql = 'SELECT * FROM "AIRCRAFT.DBF"'
  48.       active = true
  49.    endwith
  50.  
  51.     with (this.AIRCRAFT1.rowset)
  52.        indexName = "Aircraft ID"
  53.    endwith
  54.  
  55. endclass
  56.